body {
  margin: 0;
}

h1 {
  margin: 0;
}

h2 {
  margin: 0;
}

h3 {
  margin: 0;
}

.YO  { background-color: green;}
.LOVE { background-color: white;}
.GRULLO { background-color: red;}

.VISITA  { background-color: green;}
.GUSTO { background-color: white;}
.CONTACTO { background-color: red;}


body {
  background-color: #81b214;
}

h1 {
  color: green;
}
h2 {
  color: white;
}
h3 {
  color: white;
}


hr {
  border-style: none;
  border-top-style: dotted;
  border-color: grey;
  border-width: 5px;
  width: 5%;
}

.machos:hover { background-color: white;}
.raul:hover { background-color: red;}


.obelisco:hover { background-color: green;}
.feria:hover { background-color: white;}
.alturas:hover { background-color: red;}

.heart {
  background-color: crimson;
  display: inline-block;
  width: 100px;
  height: 100px;
  position: relative;
  top: 0;
  transform: rotate(-45deg);
  position: absolute;
  left: 15%;
  top: 60%;
  animation: heartbeat 1.25s infinite;
}

.heart::before,
.heart::after {
  content: "";
  background-color: crimson;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  position: absolute;
  animation: pulsecolor 1.25s infinite;
}

.heart::before {
  top: -50px;
  left: 0;
}

.heart::after {
  top: 0;
  left: 50px;
}

@keyframes heartbeat {
	0% {
    transform: scale(1)
               rotate(-45deg);
	  }
	10% {
    transform: scale(1.25)
               rotate(-45deg);
    background-color: #EF395E;
	  }
  100% {
      transform: scale(1)
                 rotate(-45deg);
  }
}

@keyframes pulsecolor {
  10% {
  background-color: #EF395E;
  }
}

